home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / softwareupdate / system / amigados / install.doc < prev    next >
Text File  |  1996-10-10  |  4KB  |  114 lines

  1. HOW TO INSTALL THE AMIGADOS C MANUAL
  2. ------------------------------------
  3.  
  4. Before you can use the AmigaDOS C Manual from the floppy disks
  5. you have to prepare your system. (If you want to install the
  6. manual on your hard disk, which is recommended if you have one,
  7. simply follow the instructions in document "InstallHD.doc".)
  8.  
  9. When the official Amiga C Encyclopedia V4.0 is released I will
  10. of course include an "installation" utility which does
  11. everything for you, but for the moment you sadly have to do it
  12. yourself. However, it is not difficult and should not take more
  13. than five minutes to do. There are only two things you have to
  14. do:
  15.  
  16.  
  17. 1. When AmigaGuide is trying to access different parts of the
  18. manual it uses some "logical devices" which must be created in
  19. your start-up sequence when the computer is started. The
  20. advantage with these "logical devices" is that you actually can
  21. place the different parts of the manual wherever you like -
  22. even on different partition of the hard disk if necessary. You
  23. then only have to alter the "logical devices" and AmigaGuide
  24. will find all files!
  25.  
  26. If you have not altered the files on the disks you should
  27. include the following lines in the start-up sequence (in the
  28. file "S:User-Startup").
  29.  
  30. ---------------------------------------------------------------
  31.  
  32. Assign ACE_ACE:                 AmigaDOS1:ACE
  33. Assign ACE_Dos:                 AmigaDOS1:
  34. Assign ACE_DosAmigaDOS:         AmigaDOS1:AmigaDOS
  35. Assign ACE_DosIntroduction:     AmigaDOS1:Introduction
  36. Assign ACE_DosFiles:            AmigaDOS1:Files
  37. Assign ACE_DosFileFunctions:    AmigaDOS1:FileFunctions
  38.  
  39. Assign ACE_DosBufferedIO:       AmigaDOS2:BufferedIO
  40. Assign ACE_DosParsingCL:        AmigaDOS2:ParsingCommandLine
  41.  
  42. Assign ACE_DosHandlers:         AmigaDOS3:Handlers
  43. Assign ACE_DosAdvancedRoutines: AmigaDOS3:AdvancedRoutines
  44. Assign ACE_DosMiscellaneous:    AmigaDOS3:Miscellaneous
  45.  
  46. Assign ACE_DosLibrary:          AmigaDOS4:AmigaDOSLibrary
  47.  
  48. Assign ACE_Utilities:           SYS:Utilities
  49.  
  50. ---------------------------------------------------------------
  51.  
  52. If you have moved the chapters (drawers) to other parts of the
  53. disks you should of course alter the assignments so they fit
  54. your system.
  55.  
  56.  
  57.  
  58. 2. With AmigaGuide you can not only freely move between
  59. different text parts, you can also look at pictures, run
  60. examples and edit the source codes. These special features
  61. are actually not done by AmigaGuide itself, but instead by
  62. external programs which are started by AmigaGuide. For the
  63. moment AmigaGuide only knows about two external programs -
  64. "ACEDisplay" and "ACEEditor".
  65.  
  66. These "programs" do actually not exist! What you should do is
  67. to tell AmigaDOS which programs that AmigaDOS actually should
  68. start when the above mentioned programs are called. You do this
  69. with the help of the Shell command "Alias". 
  70.  
  71. If you want to use the standard "Display" program (is included
  72. on your system disk in the "utilities" drawer) as a picture
  73. viewer you should include the following line in the start-up
  74. sequence (in the file "S:User-Startup"):
  75.  
  76.   Alias ACEDisplay Display
  77.  
  78. Whenever AmigaGuide is trying to display a picture it will
  79. call the program "ACEDisplay" (which does not exist), and
  80. AmigaDOS will notice this and redirect the call to "Display"
  81. which is started instead.
  82.  
  83. You should do the same thing with the "ACEEditor" command, so
  84. your favourite editor is started whenever a document should be
  85. edited.
  86.  
  87. If you want to use the standard editor "Ed" (is also included
  88. on your system disk in the "utilities" drawer) you should
  89. include the following line in the start-up sequence (in the file
  90. "S:User-Startup"):
  91.  
  92.   Alias ACEEditor Ed
  93.  
  94. However, if you have the SAS/C Compiler you probably want to
  95. use the more advanced editor "SE". You then simply replace the
  96. line above with this line:
  97.  
  98.   Alias ACEEditor SE
  99.  
  100. However, if you have the Lattice C Compiler you probably want
  101. to use the "LSE" editor instead, and you should then include
  102. this line:
  103.  
  104.   Alias ACEEditor LSE
  105.  
  106.  
  107.  
  108. This was all you had to do. Simply restart your computer (so
  109. the new lines in the "User-Startup" file are executed) and you
  110. can start to use the AmigaDOS C Manual, and have fun!!!
  111.  
  112. Happy Programming!
  113. Anders Bjerin
  114.